Please sign-up for an account at Posit Cloud and accept our classroom invitation here: https://posit.cloud/spaces/638111/join?access_code=rc5zywUOlT58wM2TE9sKcsbuoykuE1rGuWCOyrG7.
Who are you?
Name, pronouns, group you work in
What you want to get out of the class
Favorite spring activity
Data science fundamentals: How do you translate your scientific question to a data wrangling problem and answer it?
Intro to Computing
Data structures
Data wrangling 1
Data wrangling 2
Data visualization
Wrap-up, Pizza
We offer a badge of completion when you finish the course!
What it is:
What it isn’t:
Requirements:
We will focus on English <-> Programming Code for R Interpreter in this class.
Open up “Week 1 Classwork” once you are in the classroom.
Pre-course survey here: https://forms.gle/bakYJ218Xu5EdSRv6
Consider the expression:
[1] 21
[1] 39
Numeric: 18, -21, 65, 1.25
Character: “ATCG”, “Whatever”, “948-293-0000”
Logical: TRUE, FALSE
To build up a computer program, we need to store our returned data type from our expression somewhere for downstream use.
Evaluate the expression to the right of =.
Bind variable on the left of = to the resulting value.
Then the variable is stored in the environment.
Look, now age can be reused downstream:
[1] 37
[1] 37.41641
Computer = powerful + stupid
function(a, b + c) isn’t working, examine a and b + c